home *** CD-ROM | disk | FTP | other *** search
/ Tandy Sensation 2 / Tandy Sensation II Data.iso / 1.bat next >
DOS Batch File  |  1993-09-11  |  2KB  |  64 lines

  1. @echo off
  2. set drv=D:
  3. if exist D:\ORIGINAL\WINDOWS\TANDYDEM.o4 goto runset
  4. set drv=E:
  5. if exist E:\ORIGINAL\WINDOWS\TANDYDEM.o4 goto runset
  6. set drv=F:
  7. if exist F:\ORIGINAL\WINDOWS\TANDYDEM.o4 goto runset
  8. echo CD-ROM Data Disc not found.
  9. goto exit
  10. :runset
  11. @echo This batch file will restore the files on C: to their condition at 
  12. @echo the time of computer purchase.
  13. @echo *******************************************************************
  14. @echo *******************************************************************
  15. @echo **  WARNING:  *.INI, *.GRP AND OTHER DATA FILES WILL BE REPLACED.**
  16. @echo **         (*.ini and *.grp are copied to \SAVED directory)
  17. @echo *******************************************************************
  18. @echo *******************************************************************
  19. @echo Press CTRL-C to stop operation of this batch file.
  20. @pause
  21. c:
  22. cd \
  23. if not exist c:\WINDOWS\win.ini goto chkgroups
  24. @echo Saving *.ini to \saved directory
  25. xcopy c:\windows\*.ini c:\saved\ /v
  26. :chkgroups
  27. if not exist c:\windows\main.grp goto nogroups
  28. @echo Saving *.grp to \saved directory
  29. xcopy c:\windows\*.grp c:\saved\ /v
  30. :nogroups
  31. @echo Copying cd image to hard disk.  This takes about 20 minutes...
  32. attrib -r c:\command.com
  33. xcopy %drv%\original\*.* c:\ /s/e/v
  34. attrib +r c:\command.com
  35. cd \msworks
  36. md msworks.cbt
  37. xcopy c:\msworks\msworks c:\msworks\msworks.cbt /s/e/v
  38. del msworks <%drv%\yes.txt
  39. rd msworks
  40. cd c:\windows\msapps\note_it
  41. ren note_it.exe note-it.exe
  42. ren note_it.hlp note-it.hlp
  43. cd c:\windows\msapps
  44. md note-it
  45. xcopy c:\windows\msapps\note_it c:\windows\msapps\note-it
  46. cd c:\windows\msapps
  47. del note_it<%drv%\yes.txt
  48. rd note_it
  49. cd c:\msworks\clipart
  50. ren man_desk.wmf man&desk.wmf
  51. if exist c:\sb16\drv\ct-voice.drv del c:\sb16\drv\ct-voice.drv
  52. ren c:\sb16\drv\ct_voice.drv ct-voice.drv
  53. cd \
  54. @echo Please reboot your machine now.
  55. goto exit
  56.  
  57. :end
  58.  
  59. @echo Please place CD Data Disc in the drive and run this again.
  60.  
  61. :exit
  62. set drv=
  63. echo on
  64.